Test Failed
Branch feature/typescript5 (203f49)
by Lorenzo
03:01
created

Service.hello   A

Complexity

Conditions 1

Size

Total Lines 2
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
dl 0
loc 2
rs 10
c 0
b 0
f 0
1
import { Bean } from '@/main';
2
3
@Bean
4
export default class Service {
5
  hello() {
6
    return 'Hello from Service!';
7
  }
8
}
9